CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - sobel edge detection

搜索资源列表

  1. EdgeContour

    0下载:
  2. VC数字图像处理典型算法及实现,完整的源码,主要算法有:Robert 算子,Sobel 算子,Prewitt 算子,Kirsch 算子,Gauss-Laplace 算子实现边缘检测 Hough变换,轮廓提取,轮廓跟踪-VC typical digital image processing algorithm and the realization of the complete source code, the main algorithm are: Robert operator,
  3. 所属分类:Special Effects

    • 发布日期:2017-05-15
    • 文件大小:3987811
    • 提供者:lgy
  1. sharpen

    0下载:
  2. 数字图像处理中的平滑和锐化(边缘检测)。包括1、添加椒盐、高斯噪声。2对噪声污染的图像分别使用邻域平均法、中值滤波法、K邻近平均法进行平滑。3对一幅图像利用Roberts梯度法、Sobel算子和拉普拉斯算子进行锐化,并比较结果。附处理源图像和处理结果截图。 -Digital image processing smoothing and sharpening (edge detection). Including 1, add salt and pepper, Gaussian noise.
  3. 所属分类:Special Effects

    • 发布日期:2017-03-31
    • 文件大小:281805
    • 提供者:刘雨相
  1. ex4_061221015

    1下载:
  2. 实验内容:编制一个通用的边缘提取函数,通过输入不同的参数,能够实现Sobel算子、Prewitt算子、Roberts算子、Marr算子和Canny边缘检测-Experimental contents: the preparation of a generic edge detection function, by entering different parameters, to achieve Sobel operator, Prewitt operator, Roberts operator
  3. 所属分类:Special Effects

    • 发布日期:2016-05-23
    • 文件大小:918643
    • 提供者:da
  1. Robert

    0下载:
  2. 实现并比较不同梯度边缘检测方法(普通梯度、Robert、Sobel、Prewitt、Laplace、LOG和Canny) -Implementation and compare the different gradient edge detection method (general gradient, Robert, Sobel, Prewitt, Laplace, LOG, and Canny)
  3. 所属分类:Graph program

    • 发布日期:2017-03-27
    • 文件大小:50513
    • 提供者:印象小七
  1. edgedetect

    0下载:
  2. 边缘检测VC实现了 Roberts算子、 Sobel算子和 Laplacian算子.实验分析了各个算子的边缘检测-edge detection
  3. 所属分类:Special Effects

    • 发布日期:2017-04-03
    • 文件大小:11013
    • 提供者:刘则是
  1. Project7_edgedetection

    0下载:
  2. 各种边缘检测算子实现图像边缘检测功能,有laplacian, Roberts, Sobel -edge detection
  3. 所属分类:Special Effects

    • 发布日期:2017-04-07
    • 文件大小:1781
    • 提供者:彭勇
  1. chuli

    0下载:
  2. 分别利用Roberts、Prewitt和Sobel边缘检测算子,对原图象进行边缘检测,显示处理前、后图象。-, Respectively, the use of Roberts, Prewitt and Sobel edge detection operator, the original image edge detection, shows that dealt with before and after the image.
  3. 所属分类:Special Effects

    • 发布日期:2017-03-24
    • 文件大小:985
    • 提供者:张博晨
  1. edge_detector

    0下载:
  2. Roberts算子,Prewitt算子,Sobel算子,Marr算子,Canny算子之一对输入图像 实现边缘检测,输出边缘图像并与matlab自带函数实现进行对比-Roberts operator, Prewitt operator, Sobel operator, Marr operator, Canny operator to achieve one of the input image edge detection, the output edge image and bring th
  3. 所属分类:Special Effects

    • 发布日期:2017-03-29
    • 文件大小:3926
    • 提供者:hq
  1. imageview

    0下载:
  2. 图象处理程序,提供了图象直方图均衡,robert,sobel,prewitt,kirsch,gauss等方法的边缘检测运算,中值滤波,二维FFT变换和DCT变换,图象的反转,旋转等一些基本的图象模板变换和点变换的功能。目前只处理256*256的图象-Image processing procedures, provided the image histogram equalization, robert, sobel, prewitt, kirsch, gauss edge detection
  3. 所属分类:Graph program

    • 发布日期:2017-11-12
    • 文件大小:539247
    • 提供者:lukecheng
  1. 2107210017520071022238367591296

    0下载:
  2. vc图像处理比较全面的程序,提供了图象直方图均衡,robert,sobel,prewitt,kirsch,gauss等方法的边缘检测运算,中值滤波,二维FFT变换和DCT变换,图象的反转,旋转等一些基本的图象模板变换和点变换的功能。目前只处理256*256的图象-vc images deal with more comprehensive procedures, provided the image histogram equalization, robert, sobel, prewitt,
  3. 所属分类:Special Effects

    • 发布日期:2017-04-16
    • 文件大小:511686
    • 提供者:乔鹏飞
  1. edge++

    0下载:
  2. VC++,实现边缘检测,边缘检测类(包括Roberts, Sobel, Prewitt, Kirsch等算子的边缘检测算法)-VC++, The realization of edge detection, edge detection (including Roberts, Sobel, Prewitt, Kirsch operator, such as edge detection algorithm)
  3. 所属分类:Special Effects

    • 发布日期:2017-04-07
    • 文件大小:9249
    • 提供者:gyq
  1. compare_of_edge_detect_methods

    0下载:
  2. 讨论和比较了几种常用的边缘检测算子。梯度 算子计算简单 ,但精度不高 ,只能检测出图象大致的轮廓 ,而对于比较细的边缘可能会忽略。Prewitt 和Sobel算子比 Roberts 效果要好一些。LOG 滤波器和 Canny算子的检测效果优于梯度算子 ,能够检测出图象较细的边缘部分。不同的系统 ,针对不同的环境条件和要求 ,选择合适的算子来对图象进行边缘检测。-Discussion and comparison of several commonly used edge detection
  3. 所属分类:Graph Recognize

    • 发布日期:2017-04-17
    • 文件大小:156571
    • 提供者:liujia
  1. bianyuan_jiance_bijiao

    0下载:
  2. 用六种算子(分别是gabor、拉普拉斯、priwitt、robert、sobel、wallis),对三种图象进行边缘检测比较,强烈推荐哦,是本人的毕业设计中的关键程序-The six operators (respectively gabor, Laplace, priwitt, robert, sobel, wallis), images of three edge detection comparison, strongly recommend Oh, my graduation proje
  3. 所属分类:Special Effects

    • 发布日期:2017-04-05
    • 文件大小:835807
    • 提供者:吴海峰
  1. hair_Sobel_video

    0下载:
  2. 在hair DM642 开发板上,实现视频的图像sobel边缘检测-In the development of hair DM642 board realize video images sobel edge detection
  3. 所属分类:Special Effects

    • 发布日期:2017-04-26
    • 文件大小:331589
    • 提供者:陈泗勇
  1. sobel_fast

    0下载:
  2. BF561 Sobel Edge Detection
  3. 所属分类:DSP program

    • 发布日期:2017-04-14
    • 文件大小:3027
    • 提供者:yogesh
  1. matlabc

    0下载:
  2. c++与matlab混合编程-边缘提取sobel实例-c and matlab mixed programming examples sobel edge detection
  3. 所属分类:Special Effects

    • 发布日期:2017-04-05
    • 文件大小:84044
    • 提供者:sunqing
  1. myimage

    0下载:
  2. sobel边缘检测,简单的边缘检测程序,并可进行二值化处理,适合初学者。-edge detection, sobel
  3. 所属分类:Graph program

    • 发布日期:2017-05-15
    • 文件大小:3768607
    • 提供者:Smith
  1. sobel_coner

    0下载:
  2. 使用canny算子或者sobel算子检测边缘,然后进行角点检测-Using canny operator or sobel edge detection operator, and then proceed to corner detection
  3. 所属分类:Special Effects

    • 发布日期:2017-04-08
    • 文件大小:702181
    • 提供者:yuriyuri
  1. tmOutLine

    0下载:
  2. 五种边缘检测算子的实现,函数具有很好的通用性,凡是能够得到只想图像像素区指针的情况都可以使用。 配合我上传的那个opentrim使用更好,这是一个bmp全色深操作类,里边还集成了一些其他的机器视觉算法。 对图像进行高斯——拉普拉斯算子的边缘检测 对图像进行拉普拉斯算子的边缘检测 对图像进行罗伯特交叉算子的边缘检测 对图像进行蒲瑞维特算子的边缘检测 对图像进行索贝尔算子的边缘检测-5 kinds of edge detection operator to achieve
  3. 所属分类:Graph Recognize

    • 发布日期:2017-04-13
    • 文件大小:1580
    • 提供者:尧思齐
  1. leogic

    0下载:
  2. 一、图像边缘检测里边包含3个程序: 1.边缘检测程序,包括robert 算子,sobel 算子,prewitt算子,gauss-laplace算子 2.hough变换检测直线 3.轮廓提取程序 二、图像配准程序 包括1个程序 三、图像复原程序 里边重点实现了由运动模糊造成的图像复原的算法。 上传作者简介:图像处理专业博士研究生。 恳请版主批准同意。谢谢!-edge detection image contour extraction hough tr
  3. 所属分类:Graph program

    • 发布日期:2017-05-13
    • 文件大小:2663645
    • 提供者:leogic
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 34 »
搜珍网 www.dssz.com